/* ==============================
SECCIÓN "NOSOTROS" – NUEVA VERSIÓN
============================== */
.team-intro { max-width: 900px; margin: 0 auto 40px; text-align: center; }
.team-intro p { margin-bottom: 10px; line-height: 1.6; }


.team-section { max-width: 1100px; margin: 0 auto 60px; text-align: center; }
.team-section h2 { color: var(--gge-gold); margin-bottom: 30px; }


.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }


.team-card { background: rgba(10, 10, 10, 0.95); border-radius: 16px; border: 1px solid #444; box-shadow: 0 0 14px rgba(0, 0, 0, 0.8); padding: 18px 16px 20px; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.team-card:hover { transform: translateY(-4px); border-color: var(--gge-gold); box-shadow: 0 0 14px rgba(255, 215, 0, 0.6), 0 0 30px rgba(0, 0, 0, 0.9); }


.team-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gge-gold); box-shadow: 0 0 12px rgba(255, 215, 0, 0.5); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }


.team-info { text-align: center; }
.team-info h3 { font-size: 1rem; margin-bottom: 4px; font-weight: 600; }
.team-role { font-size: 0.85rem; color: var(--gge-gold); margin-bottom: 8px; }


.team-bio { font-size: 0.9rem; line-height: 1.5; color: #f5f5f5; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.team-card.open .team-bio { max-height: 200px; }


.team-toggle { margin-top: 8px; padding: 6px 14px; border-radius: 999px; border: none; background: var(--gge-gold); color: #000; font-size: 0.8rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease; }
.team-toggle:hover { background: #ffe470; transform: translateY(-1px); box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); }


@media (max-width: 600px) {
.team-card { padding: 16px 14px 18px; }
.team-photo { width: 100px; height: 100px; }
.team-bio { font-size: 0.9rem; }
}